home *** CD-ROM | disk | FTP | other *** search
-
-
-
-
- CREATE(QUEL) 1/26/79 CREATE(QUEL)
-
-
-
- NAME
- create - create a new relation
-
- SYNOPSIS
- _c_r_e_a_t_e relname (domname_1 = format {, domname_2 = format })
-
- DESCRIPTION
- _C_r_e_a_t_e will enter a new relation into the data base. The
- relation will be ``owned'' by the user and will be set to
- expire after seven days. The name of the relation is _r_e_l_-
- _n_a_m_e and the domains are named _d_o_m_n_a_m_e_1, _d_o_m_n_a_m_e_2, etc. The
- domains are created with the type specified by _f_o_r_m_a_t. For-
- mats are described in the quel(quel) manual section.
-
- The relation is created as a paged heap with no data ini-
- tially in it.
-
- A relation can have no more than 49 domains. A relation
- cannot have the same name as a system relation.
-
- EXAMPLE
- /* Create relation emp with domains name, sal and bdate */
- create emp (name = c10, salary = f4, bdate = i2)
-
- SEE ALSO
- append(quel), copy(quel), destroy(quel), save(quel)
-
- BUGS
-
-